home *** CD-ROM | disk | FTP | other *** search
- ' This file contains some special maneuvers that will only be used in special
- ' circumstances.
-
- procedure moveFarUnitsToRiver(unitsUnableToMove);
- procedure moveCloseUnitsOffTheBoard(unitsUnableToMove);
- procedure moveAlexOffTheBoard();
-
- procedure MoveCraterusAcrossRiver()
- {
- ' Just loop through the units without actually giving up control since he
- ' doesn't have any more units than he has initiative. Just make sure that
- ' he finishes himself at the end of this procedure...
-
- var unit, hex, majorNum, minorNum, dir;
-
- GroupListReset();
- unit = GroupListGetNext();
- while (unit != -1)
- {
- watch "Now moving this unit across the river: " unit;
- hex = Query(REGION_NUM, unit);
- if (hex > 427)
- {
- ' He still needs to get into position to cross the river...
- write "Still maneuvering to cross the river...";
- MoveToward(226, unit);
- hex = Query(REGION_NUM, unit);
- watch "His new hex is: " hex;
- };
- if (hex <= 427)
- {
- if (hex < 421)
- {
- ' He is in position to cross the river. See if he needs to rotate...
- dir = Query(FACING, unit);
- if (dir != NORTHEAST)
- Rotate(unit, NORTHEAST);
- };
- MoveToward(418, unit);
- };
- unit = GroupListGetNext();
- };
- MoveLeader();
- FinishLeader();
- };
-
- procedure IsCraterusAcrossRiver()
- {
- var everyoneAcross, unit, hex, majorNum, minorNum;
-
- everyoneAcross = True;
- GroupListReset();
- unit = GroupListGetNext();
- while ( (unit != -1) AND (everyoneAcross == True) )
- {
- hex = Query(REGION_NUM, unit);
- majorNum = (hex/100)*100;
- minorNum = hex-majorNum;
- watch "Checking this unit to see if he is across the river: " unit;
- watch "His minor number is " minorNum;
- if (minorNum > 20)
- everyoneAcross = False;
- unit = GroupListGetNext();
- };
- return everyoneAcross;
- };
-
- procedure PeliumWithdrawl()
- {
- var outOfRangeList, battlingList, unitRallied, unitRecovered, retVal, done,
- region, unit, close;
-
- write "Here in PeliumWithdrawl";
- unitRallied = Rally();
- if (unitRallied != -1)
- {
- write "A unit was rallied from PeliumWithdrawl";
- return 1;
- };
- ' unitRecovered = PartialRecover();
- ' if (unitRecovered)
- ' {
- ' write "A unit was recovered";
- ' return 1;
- ' };
- outOfRangeList = GetList();
- battlingList = GetList();
- GetUnitsOutOfRange(outOfRangeList);
- GetUnitsEngagedInBattle(battlingList);
-
- ' See if there are units far from the destination...
- GroupListReset();
- unit = GroupListGetNext();
- close = False;
- while (unit != -1 AND NOT close)
- {
- region = Query(REGION_NUM, unit);
- if (region <= 118)
- close = True;
- unit = GroupListGetNext();
- };
- if (close)
- {
- done = False;
- while (NOT done)
- {
- retVal = moveCloseUnitsOffTheBoard(outOfRangeList);
- if (retVal >= 0)
- {
- AddToList(outOfRangeList, retVal);
- watch "Could not move unit: " retVal;
- };
- if (retVal == MOVE_SUCCESS)
- {
- done = True;
- return done;
- };
- };
- };
- ' This loop will (should) insure that the A/I leaders will use all of their
- ' commands.
- done = False;
- while (NOT done)
- {
- retVal = moveFarUnitsToRiver(outOfRangeList);
- if (retVal >= 0) ' This indicates that the unit # could NOT move...
- {
- AddToList(outOfRangeList, retVal);
- watch "Could not move unit this unit: " retVal;
- };
- if (retVal == MOVE_SUCCESS)
- {
- done = True;
- write "Successfully moved a unit in PeliumWithdrawl";
- };
- };
- };
-
- procedure moveFarUnitsToRiver(unitsUnableToMove)
- {
- var farthestUnit, unitList, unitLookingAt, movementRemaining, movementAllowance,
- whichUnitToMove, unitHex, farthestDist, distance, correctFacing,
- dir, retVal, potentialHexToAttack, canRotate, destHex;
-
- destHex = 118;
- write "Here in peliumWeightAndMove";
- ' First, create a list of units that can move. This involves checking
- ' the group list and NOT adding units in the "unitsUnableToMove" list
- ' and also excluding units that have already moved by this leader. This
- ' little routine also includes units that have friendlies in their
- ' frontal hexes
- farthestUnit = -1; ' Illegal unit
- farthestDist = -1; ' No one will be this close.
- GroupListReset();
- unitList = GetList();
- unitLookingAt = GroupListGetNext();
- while (unitLookingAt != -1)
- {
- if (IsMemberOf(unitsUnableToMove, unitLookingAt) == FALSE)
- {
- movementRemaining = Query(5, unitLookingAt);
- movementAllowance = Query(4, unitLookingAt);
- if (movementRemaining == movementAllowance)
- {
- if (CanMove(unitLookingAt))
- {
- AddToList(unitList, unitLookingAt);
- unitHex = Query(REGION_NUM, unitLookingAt);
- distance = Distance(unitHex, destHex);
- if (distance > farthestDist)
- {
- watch "This unit is closest to the destination: " unitLookingAt;
- watch "His distance to the destination is " distance;
- farthestUnit = unitLookingAt;
- farthestDist = distance;
- };
- };
- };
- };
- unitLookingAt = GroupListGetNext();
- };
-
- ' Check to see if there were any legal units to move. If not, then they
- ' are (probably) out of range. Move the leader...
- if (farthestUnit == -1)
- {
- write "No more units to move... moving the leader.";
- farthestUnit = GetLeader();
- retVal = moveAlexOffTheBoard();
- if (retVal == ALREADY_MOVED)
- {
- ' If I'm in here, that means that there were no more units within range
- ' to move before and after the leader movement.
- FinishLeader();
- return MOVE_SUCCESS;
- };
- if (retVal == 0)
- {
- ' If I'm in here, that means there were no legal moves for the leader
- ' and he couldn't move anyone else, so here it ends.
- FinishLeader();
- return MOVE_SUCCESS;
- };
- return retVal;
- };
-
- ' I have the farthest unit now. See if he is facing the right direction.
- ' If he isn't, rotate him so he is facing the right direction.
- unitHex = Query(REGION_NUM, farthestUnit);
- correctFacing = IsInGeneralDir(farthestUnit, destHex);
- if (correctFacing == FALSE)
- {
- dir = Direction(unitHex, destHex);
- canRotate = CanRotate(farthestUnit, dir);
- if (canRotate)
- {
- retVal = Rotate(farthestUnit, dir);
- if (retVal == OW_MOVE)
- return MOVE_SUCCESS;
- };
- };
-
- retVal = MoveToward(destHex, farthestUnit);
- ShootMissilesFar(farthestUnit);
- if (retVal)
- AttackInZOC(farthestUnit);
- if (retVal == 0)
- return farthestUnit;
- return MOVE_SUCCESS;
- };
-
- procedure moveCloseUnitsOffTheBoard(unitsUnableToMove)
- {
- var closestUnit, unitList, unitLookingAt, movementRemaining, movementAllowance,
- whichUnitToMove, unitHex, closestDist, distance, correctFacing,
- dir, retVal, potentialHexToAttack, canRotate, destHex;
-
- destHex = 18;
- write "Here in peliumWeightAndMove";
- ' First, create a list of units that can move. This involves checking
- ' the group list and NOT adding units in the "unitsUnableToMove" list
- ' and also excluding units that have already moved by this leader. This
- ' little routine also includes units that have friendlies in their
- ' frontal hexes
- closestUnit = -1; ' Illegal unit
- closestDist = 999; ' No one will be this far.
- GroupListReset();
- unitList = GetList();
- unitLookingAt = GroupListGetNext();
- while (unitLookingAt != -1)
- {
- if (IsMemberOf(unitsUnableToMove, unitLookingAt) == FALSE)
- {
- movementRemaining = Query(5, unitLookingAt);
- movementAllowance = Query(4, unitLookingAt);
- if (movementRemaining == movementAllowance)
- {
- if (CanMove(unitLookingAt))
- {
- AddToList(unitList, unitLookingAt);
- unitHex = Query(REGION_NUM, unitLookingAt);
- distance = Distance(unitHex, destHex);
- if (distance < closestDist)
- {
- watch "This unit is closest to the destination: " unitLookingAt;
- watch "His distance to the destination is " distance;
- closestUnit = unitLookingAt;
- closestDist = distance;
- };
- };
- };
- };
- unitLookingAt = GroupListGetNext();
- };
-
- ' Check to see if there were any legal units to move. If not, then they
- ' are (probably) out of range. Move the leader...
- if (closestUnit == -1)
- {
- write "No more units to move... moving the leader.";
- closestUnit = GetLeader();
- retVal = moveAlexOffTheBoard();
- if (retVal == ALREADY_MOVED)
- {
- ' If I'm in here, that means that there were no more units within range
- ' to move before and after the leader movement.
- FinishLeader();
- return MOVE_SUCCESS;
- };
- if (retVal == 0)
- {
- ' If I'm in here, that means there were no legal moves for the leader
- ' and he couldn't move anyone else, so here it ends.
- FinishLeader();
- return MOVE_SUCCESS;
- };
- return retVal;
- };
-
- ' I have the farthest unit now. See if he is facing the right direction.
- ' If he isn't, rotate him so he is facing the right direction.
- unitHex = Query(REGION_NUM, closestUnit);
- correctFacing = IsInGeneralDir(closestUnit, destHex);
- if (correctFacing == FALSE)
- {
- dir = Direction(unitHex, destHex);
- canRotate = CanRotate(closestUnit, dir);
- if (canRotate)
- {
- retVal = Rotate(closestUnit, dir);
- if (retVal == OW_MOVE)
- return MOVE_SUCCESS;
- };
- };
-
- retVal = MoveToward(destHex, closestUnit);
- ShootMissilesFar(closestUnit);
- if (retVal)
- AttackInZOC(closestUnit);
- if (retVal == 0)
- return closestUnit;
- return MOVE_SUCCESS;
- };
-
- procedure moveAlexOffTheBoard()
- {
- ' First, determine if there are no more units to move off the board.
- var region, unit, everyoneGone;
-
- everyoneGone = True;
- GroupListReset();
- unit = GroupListGetNext();
- while (unit!=-1 AND everyoneGone)
- {
- region = Query(REGION_NUM, unit);
- if (region != -1)
- everyoneGone = False;
- unit = GroupListGetNext();
- };
- if (NOT everyoneGone)
- MoveLeader()
- else
- {
- unit = GetLeader();
- MoveToward(18, unit);
- };
- };
-